type crypto/md5.digest

13 uses

	crypto/md5 (current package)
		md5.go#L38: type digest struct {
		md5.go#L45: func (d *digest) Reset() {
		md5.go#L59: func (d *digest) MarshalBinary() ([]byte, error) {
		md5.go#L72: func (d *digest) UnmarshalBinary(b []byte) error {
		md5.go#L102: 	d := new(digest)
		md5.go#L107: func (d *digest) Size() int { return Size }
		md5.go#L109: func (d *digest) BlockSize() int { return BlockSize }
		md5.go#L111: func (d *digest) Write(p []byte) (nn int, err error) {
		md5.go#L145: func (d *digest) Sum(in []byte) []byte {
		md5.go#L152: func (d *digest) checkSum() [Size]byte {
		md5.go#L179: 	var d digest
		md5block.go#L14: func blockGeneric(dig *digest, p []byte) {
		md5block_decl.go#L12: func block(dig *digest, p []byte)